class Book { String title Author author static constraints = { title(blank:false, nullable:false, size:5..150) author(nullable:false) } }
def b = new Book()
assert !b.validate()
constraints
属性取得所有Constrained Property(约束的属性)的实例列表:
b.constraints.each { println it.name println it.maxSize }